home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / symm.md / RCS / stdarg.h,v < prev    next >
Text File  |  1990-12-08  |  2KB  |  98 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     90.12.08.00.04.17;  author rab;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     90.11.15.13.34.11;  author rab;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @Put ifdef around typedef of va_list, because it is also typedefed in
  27. stdio.h for prototypes.
  28. @
  29. text
  30. @/*
  31.  * stdarg.h --
  32.  *
  33.  *    Macros for handling variable-length argument lists.
  34.  *
  35.  * Copyright 1988 Regents of the University of California
  36.  * Permission to use, copy, modify, and distribute this
  37.  * software and its documentation for any purpose and without
  38.  * fee is hereby granted, provided that the above copyright
  39.  * notice appear in all copies.  The University of California
  40.  * makes no representations about the suitability of this
  41.  * software for any purpose.  It is provided "as is" without
  42.  * express or implied warranty.
  43.  *
  44.  * $Header: /sprite/src/lib/include/symm.md/RCS/stdarg.h,v 1.1 90/11/15 13:34:11 rab Exp Locker: rab $ SPRITE (Berkeley)
  45.  */
  46.  
  47. #ifndef _STDARG
  48. #define _STDARG
  49.  
  50. #ifndef _VA_LIST
  51. #define _VA_LIST
  52. typedef char *va_list;
  53. #endif
  54.  
  55. #define __va_rounded_size(TYPE)  \
  56.   (((sizeof (TYPE) + sizeof (int) - 1) / sizeof (int)) * sizeof (int))
  57.  
  58. #define va_start(AP, lastarg) \
  59.  ((AP) = ((char *)&lastarg + __va_rounded_size(lastarg)))
  60.  
  61. #define va_arg(AP, TYPE)                        \
  62.  ((AP) += __va_rounded_size (TYPE),                    \
  63.   *((TYPE *) ((AP) - __va_rounded_size (TYPE))))
  64.  
  65. #define va_end(list)
  66.  
  67. #endif /* _STDARG */
  68. @
  69.  
  70.  
  71. 1.1
  72. log
  73. @Initial revision
  74. @
  75. text
  76. @d15 1
  77. a15 1
  78.  * $Header: /sprite/src/lib/include/sun3.md/RCS/stdarg.h,v 1.2 88/11/15 21:41:23 rab Exp $ SPRITE (Berkeley)
  79. d21 4
  80. a24 5
  81. typedef struct {
  82.     char *vl_current;            /* Pointer to last arg returned from
  83.                      * list. */
  84.     char *vl_next;            /* Pointer to next arg to return. */
  85. } va_list;
  86. d26 2
  87. d29 2
  88. a30 2
  89. #define va_start(list, lastarg) \
  90.     (list).vl_current = (list).vl_next = ((char *) &lastarg) + 4;
  91. d32 3
  92. a34 4
  93. #define va_arg(list, type)            \
  94.     ((list).vl_current = (list).vl_next,    \
  95.     (list).vl_next += sizeof(type),        \
  96.      *((type *) (list).vl_current))
  97. @
  98.